home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Latest Windows '95 Programs
/
The Latest Windows 95 Programs.iso
/
win95
/
utility
/
perl32b3
/
winver.pl
< prev
Wrap
Text File
|
1995-06-20
|
405b
|
22 lines
# Program Example for O/S Version Check
# by Maxwell N. Andrews
# Date: 12th Jan 1995
$winver= winver;
$platform= "Unknown";
if ( $winver & 0x80000000 ) {
$platform= ( $winver & 0x40000000 ) ? "Windows 95": "Win32s";
}
else {
$platform= "Windows NT, or DPMI32";
}
printf( "You are using $platform v%d.%d\n", $winver & 0xff, ( $winver >> 8 ) & 0xff );
# End of Program